Code source

Replicated code from Jenny Trickey’s repo here

Trip/drift: CalCurCEAS_2024_026

Summaries generated: 2025 Jun 11 14:25 UTC

Setup

Load needed libraries.

# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)

# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)

Set user-defined variables.

# name project
# ProjID <- 'MHI UxS Glider Project'

# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)

# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets, 
                          paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML

# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp


# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files 
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files") 
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")

# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported 

# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)

#Set time zone to UTC
Sys.setenv(TZ = 'UTC')

# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3', 
#                '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a', 
               '#66a61e', '#e6ab02')

Define needed functions

Source some external functions

source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))

# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))

Load and prep AcousticStudies

If already created, load an existing dets PAMpal AcousticStudy object for event processing. We need to load both the unfiltered dets and filtered detsFilt AcousticStudies.

# load existing dets AcousticStudy (created with 
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
  dets <- readRDS(detsFile)
  cat('Loaded', detsFile, '\n')
} else {
  cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_026/CalCurCEAS_2024_026_Filtered.rdata
if (file.exists(detsFiltFile)){
  detsFilt <- readRDS(detsFiltFile)
  cat('Loaded', detsFiltFile, '\n')
} else {
  cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_026/CalCurCEAS_2024_026_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))

Loaded F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_026/CalCurCEAS_2024_026_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_026/CalCurCEAS_2024_026_ch1.rdata

## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 11766 out of 11766 missing binary files. 
## Updating files in events...
##   |                                                                                                                               |                                                                                                                       |   0%  |                                                                                                                               |=                                                                                                                      |   0%  |                                                                                                                               |=                                                                                                                      |   1%  |                                                                                                                               |==                                                                                                                     |   1%  |                                                                                                                               |==                                                                                                                     |   2%  |                                                                                                                               |===                                                                                                                    |   2%  |                                                                                                                               |===                                                                                                                    |   3%  |                                                                                                                               |====                                                                                                                   |   3%  |                                                                                                                               |====                                                                                                                   |   4%  |                                                                                                                               |=====                                                                                                                  |   4%  |                                                                                                                               |=====                                                                                                                  |   5%  |                                                                                                                               |======                                                                                                                 |   5%  |                                                                                                                               |=======                                                                                                                |   5%  |                                                                                                                               |=======                                                                                                                |   6%  |                                                                                                                               |========                                                                                                               |   6%  |                                                                                                                               |========                                                                                                               |   7%  |                                                                                                                               |=========                                                                                                              |   7%  |                                                                                                                               |=========                                                                                                              |   8%  |                                                                                                                               |==========                                                                                                             |   8%  |                                                                                                                               |==========                                                                                                             |   9%  |                                                                                                                               |===========                                                                                                            |   9%  |                                                                                                                               |===========                                                                                                            |  10%  |                                                                                                                               |============                                                                                                           |  10%  |                                                                                                                               |============                                                                                                           |  11%  |                                                                                                                               |=============                                                                                                          |  11%  |                                                                                                                               |==============                                                                                                         |  11%  |                                                                                                                               |==============                                                                                                         |  12%  |                                                                                                                               |===============                                                                                                        |  12%  |                                                                                                                               |===============                                                                                                        |  13%  |                                                                                                                               |================                                                                                                       |  13%  |                                                                                                                               |================                                                                                                       |  14%  |                                                                                                                               |=================                                                                                                      |  14%  |                                                                                                                               |=================                                                                                                      |  15%  |                                                                                                                               |==================                                                                                                     |  15%  |                                                                                                                               |==================                                                                                                     |  16%  |                                                                                                                               |===================                                                                                                    |  16%  |                                                                                                                               |====================                                                                                                   |  16%  |                                                                                                                               |====================                                                                                                   |  17%  |                                                                                                                               |=====================                                                                                                  |  17%  |                                                                                                                               |=====================                                                                                                  |  18%  |                                                                                                                               |======================                                                                                                 |  18%  |                                                                                                                               |======================                                                                                                 |  19%  |                                                                                                                               |=======================                                                                                                |  19%  |                                                                                                                               |=======================                                                                                                |  20%  |                                                                                                                               |========================                                                                                               |  20%  |                                                                                                                               |========================                                                                                               |  21%  |                                                                                                                               |=========================                                                                                              |  21%  |                                                                                                                               |==========================                                                                                             |  21%  |                                                                                                                               |==========================                                                                                             |  22%  |                                                                                                                               |===========================                                                                                            |  22%  |                                                                                                                               |===========================                                                                                            |  23%  |                                                                                                                               |============================                                                                                           |  23%  |                                                                                                                               |============================                                                                                           |  24%  |                                                                                                                               |=============================                                                                                          |  24%  |                                                                                                                               |=============================                                                                                          |  25%  |                                                                                                                               |==============================                                                                                         |  25%  |                                                                                                                               |==============================                                                                                         |  26%  |                                                                                                                               |===============================                                                                                        |  26%  |                                                                                                                               |================================                                                                                       |  26%  |                                                                                                                               |================================                                                                                       |  27%  |                                                                                                                               |=================================                                                                                      |  27%  |                                                                                                                               |=================================                                                                                      |  28%  |                                                                                                                               |==================================                                                                                     |  28%  |                                                                                                                               |==================================                                                                                     |  29%  |                                                                                                                               |===================================                                                                                    |  29%  |                                                                                                                               |===================================                                                                                    |  30%  |                                                                                                                               |====================================                                                                                   |  30%  |                                                                                                                               |====================================                                                                                   |  31%  |                                                                                                                               |=====================================                                                                                  |  31%  |                                                                                                                               |=====================================                                                                                  |  32%  |                                                                                                                               |======================================                                                                                 |  32%  |                                                                                                                               |=======================================                                                                                |  32%  |                                                                                                                               |=======================================                                                                                |  33%  |                                                                                                                               |========================================                                                                               |  33%  |                                                                                                                               |========================================                                                                               |  34%  |                                                                                                                               |=========================================                                                                              |  34%  |                                                                                                                               |=========================================                                                                              |  35%  |                                                                                                                               |==========================================                                                                             |  35%  |                                                                                                                               |==========================================                                                                             |  36%  |                                                                                                                               |===========================================                                                                            |  36%  |                                                                                                                               |===========================================                                                                            |  37%  |                                                                                                                               |============================================                                                                           |  37%  |                                                                                                                               |=============================================                                                                          |  37%  |                                                                                                                               |=============================================                                                                          |  38%  |                                                                                                                               |==============================================                                                                         |  38%  |                                                                                                                               |==============================================                                                                         |  39%  |                                                                                                                               |===============================================                                                                        |  39%  |                                                                                                                               |===============================================                                                                        |  40%  |                                                                                                                               |================================================                                                                       |  40%  |                                                                                                                               |================================================                                                                       |  41%  |                                                                                                                               |=================================================                                                                      |  41%  |                                                                                                                               |=================================================                                                                      |  42%  |                                                                                                                               |==================================================                                                                     |  42%  |                                                                                                                               |===================================================                                                                    |  42%  |                                                                                                                               |===================================================                                                                    |  43%  |                                                                                                                               |====================================================                                                                   |  43%  |                                                                                                                               |====================================================                                                                   |  44%  |                                                                                                                               |=====================================================                                                                  |  44%  |                                                                                                                               |=====================================================                                                                  |  45%  |                                                                                                                               |======================================================                                                                 |  45%  |                                                                                                                               |======================================================                                                                 |  46%  |                                                                                                                               |=======================================================                                                                |  46%  |                                                                                                                               |=======================================================                                                                |  47%  |                                                                                                                               |========================================================                                                               |  47%  |                                                                                                                               |=========================================================                                                              |  47%  |                                                                                                                               |=========================================================                                                              |  48%  |                                                                                                                               |==========================================================                                                             |  48%  |                                                                                                                               |==========================================================                                                             |  49%  |                                                                                                                               |===========================================================                                                            |  49%  |                                                                                                                               |===========================================================                                                            |  50%  |                                                                                                                               |============================================================                                                           |  50%  |                                                                                                                               |============================================================                                                           |  51%  |                                                                                                                               |=============================================================                                                          |  51%  |                                                                                                                               |=============================================================                                                          |  52%  |                                                                                                                               |==============================================================                                                         |  52%  |                                                                                                                               |==============================================================                                                         |  53%  |                                                                                                                               |===============================================================                                                        |  53%  |                                                                                                                               |================================================================                                                       |  53%  |                                                                                                                               |================================================================                                                       |  54%  |                                                                                                                               |=================================================================                                                      |  54%  |                                                                                                                               |=================================================================                                                      |  55%  |                                                                                                                               |==================================================================                                                     |  55%  |                                                                                                                               |==================================================================                                                     |  56%  |                                                                                                                               |===================================================================                                                    |  56%  |                                                                                                                               |===================================================================                                                    |  57%  |                                                                                                                               |====================================================================                                                   |  57%  |                                                                                                                               |====================================================================                                                   |  58%  |                                                                                                                               |=====================================================================                                                  |  58%  |                                                                                                                               |======================================================================                                                 |  58%  |                                                                                                                               |======================================================================                                                 |  59%  |                                                                                                                               |=======================================================================                                                |  59%  |                                                                                                                               |=======================================================================                                                |  60%  |                                                                                                                               |========================================================================                                               |  60%  |                                                                                                                               |========================================================================                                               |  61%  |                                                                                                                               |=========================================================================                                              |  61%  |                                                                                                                               |=========================================================================                                              |  62%  |                                                                                                                               |==========================================================================                                             |  62%  |                                                                                                                               |==========================================================================                                             |  63%  |                                                                                                                               |===========================================================================                                            |  63%  |                                                                                                                               |============================================================================                                           |  63%  |                                                                                                                               |============================================================================                                           |  64%  |                                                                                                                               |=============================================================================                                          |  64%  |                                                                                                                               |=============================================================================                                          |  65%  |                                                                                                                               |==============================================================================                                         |  65%  |                                                                                                                               |==============================================================================                                         |  66%  |                                                                                                                               |===============================================================================                                        |  66%  |                                                                                                                               |===============================================================================                                        |  67%  |                                                                                                                               |================================================================================                                       |  67%  |                                                                                                                               |================================================================================                                       |  68%  |                                                                                                                               |=================================================================================                                      |  68%  |                                                                                                                               |==================================================================================                                     |  68%  |                                                                                                                               |==================================================================================                                     |  69%  |                                                                                                                               |===================================================================================                                    |  69%  |                                                                                                                               |===================================================================================                                    |  70%  |                                                                                                                               |====================================================================================                                   |  70%  |                                                                                                                               |====================================================================================                                   |  71%  |                                                                                                                               |=====================================================================================                                  |  71%  |                                                                                                                               |=====================================================================================                                  |  72%  |                                                                                                                               |======================================================================================                                 |  72%  |                                                                                                                               |======================================================================================                                 |  73%  |                                                                                                                               |=======================================================================================                                |  73%  |                                                                                                                               |=======================================================================================                                |  74%  |                                                                                                                               |========================================================================================                               |  74%  |                                                                                                                               |=========================================================================================                              |  74%  |                                                                                                                               |=========================================================================================                              |  75%  |                                                                                                                               |==========================================================================================                             |  75%  |                                                                                                                               |==========================================================================================                             |  76%  |                                                                                                                               |===========================================================================================                            |  76%  |                                                                                                                               |===========================================================================================                            |  77%  |                                                                                                                               |============================================================================================                           |  77%  |                                                                                                                               |============================================================================================                           |  78%  |                                                                                                                               |=============================================================================================                          |  78%  |                                                                                                                               |=============================================================================================                          |  79%  |                                                                                                                               |==============================================================================================                         |  79%  |                                                                                                                               |===============================================================================================                        |  79%  |                                                                                                                               |===============================================================================================                        |  80%  |                                                                                                                               |================================================================================================                       |  80%  |                                                                                                                               |================================================================================================                       |  81%  |                                                                                                                               |=================================================================================================                      |  81%  |                                                                                                                               |=================================================================================================                      |  82%  |                                                                                                                               |==================================================================================================                     |  82%  |                                                                                                                               |==================================================================================================                     |  83%  |                                                                                                                               |===================================================================================================                    |  83%  |                                                                                                                               |===================================================================================================                    |  84%  |                                                                                                                               |====================================================================================================                   |  84%  |                                                                                                                               |=====================================================================================================                  |  84%  |                                                                                                                               |=====================================================================================================                  |  85%  |                                                                                                                               |======================================================================================================                 |  85%  |                                                                                                                               |======================================================================================================                 |  86%  |                                                                                                                               |=======================================================================================================                |  86%  |                                                                                                                               |=======================================================================================================                |  87%  |                                                                                                                               |========================================================================================================               |  87%  |                                                                                                                               |========================================================================================================               |  88%  |                                                                                                                               |=========================================================================================================              |  88%  |                                                                                                                               |=========================================================================================================              |  89%  |                                                                                                                               |==========================================================================================================             |  89%  |                                                                                                                               |===========================================================================================================            |  89%  |                                                                                                                               |===========================================================================================================            |  90%  |                                                                                                                               |============================================================================================================           |  90%  |                                                                                                                               |============================================================================================================           |  91%  |                                                                                                                               |=============================================================================================================          |  91%  |                                                                                                                               |=============================================================================================================          |  92%  |                                                                                                                               |==============================================================================================================         |  92%  |                                                                                                                               |==============================================================================================================         |  93%  |                                                                                                                               |===============================================================================================================        |  93%  |                                                                                                                               |===============================================================================================================        |  94%  |                                                                                                                               |================================================================================================================       |  94%  |                                                                                                                               |================================================================================================================       |  95%  |                                                                                                                               |=================================================================================================================      |  95%  |                                                                                                                               |==================================================================================================================     |  95%  |                                                                                                                               |==================================================================================================================     |  96%  |                                                                                                                               |===================================================================================================================    |  96%  |                                                                                                                               |===================================================================================================================    |  97%  |                                                                                                                               |====================================================================================================================   |  97%  |                                                                                                                               |====================================================================================================================   |  98%  |                                                                                                                               |=====================================================================================================================  |  98%  |                                                                                                                               |=====================================================================================================================  |  99%  |                                                                                                                               |====================================================================================================================== |  99%  |                                                                                                                               |====================================================================================================================== | 100%  |                                                                                                                               |=======================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 11766 out of 11766 missing binary files. 
## Updating files in events...
##   |                                                                                                                               |                                                                                                                       |   0%  |                                                                                                                               |=                                                                                                                      |   0%  |                                                                                                                               |=                                                                                                                      |   1%  |                                                                                                                               |==                                                                                                                     |   1%  |                                                                                                                               |==                                                                                                                     |   2%  |                                                                                                                               |===                                                                                                                    |   2%  |                                                                                                                               |===                                                                                                                    |   3%  |                                                                                                                               |====                                                                                                                   |   3%  |                                                                                                                               |====                                                                                                                   |   4%  |                                                                                                                               |=====                                                                                                                  |   4%  |                                                                                                                               |=====                                                                                                                  |   5%  |                                                                                                                               |======                                                                                                                 |   5%  |                                                                                                                               |=======                                                                                                                |   5%  |                                                                                                                               |=======                                                                                                                |   6%  |                                                                                                                               |========                                                                                                               |   6%  |                                                                                                                               |========                                                                                                               |   7%  |                                                                                                                               |=========                                                                                                              |   7%  |                                                                                                                               |=========                                                                                                              |   8%  |                                                                                                                               |==========                                                                                                             |   8%  |                                                                                                                               |==========                                                                                                             |   9%  |                                                                                                                               |===========                                                                                                            |   9%  |                                                                                                                               |===========                                                                                                            |  10%  |                                                                                                                               |============                                                                                                           |  10%  |                                                                                                                               |============                                                                                                           |  11%  |                                                                                                                               |=============                                                                                                          |  11%  |                                                                                                                               |==============                                                                                                         |  11%  |                                                                                                                               |==============                                                                                                         |  12%  |                                                                                                                               |===============                                                                                                        |  12%  |                                                                                                                               |===============                                                                                                        |  13%  |                                                                                                                               |================                                                                                                       |  13%  |                                                                                                                               |================                                                                                                       |  14%  |                                                                                                                               |=================                                                                                                      |  14%  |                                                                                                                               |=================                                                                                                      |  15%  |                                                                                                                               |==================                                                                                                     |  15%  |                                                                                                                               |==================                                                                                                     |  16%  |                                                                                                                               |===================                                                                                                    |  16%  |                                                                                                                               |====================                                                                                                   |  16%  |                                                                                                                               |====================                                                                                                   |  17%  |                                                                                                                               |=====================                                                                                                  |  17%  |                                                                                                                               |=====================                                                                                                  |  18%  |                                                                                                                               |======================                                                                                                 |  18%  |                                                                                                                               |======================                                                                                                 |  19%  |                                                                                                                               |=======================                                                                                                |  19%  |                                                                                                                               |=======================                                                                                                |  20%  |                                                                                                                               |========================                                                                                               |  20%  |                                                                                                                               |========================                                                                                               |  21%  |                                                                                                                               |=========================                                                                                              |  21%  |                                                                                                                               |==========================                                                                                             |  21%  |                                                                                                                               |==========================                                                                                             |  22%  |                                                                                                                               |===========================                                                                                            |  22%  |                                                                                                                               |===========================                                                                                            |  23%  |                                                                                                                               |============================                                                                                           |  23%  |                                                                                                                               |============================                                                                                           |  24%  |                                                                                                                               |=============================                                                                                          |  24%  |                                                                                                                               |=============================                                                                                          |  25%  |                                                                                                                               |==============================                                                                                         |  25%  |                                                                                                                               |==============================                                                                                         |  26%  |                                                                                                                               |===============================                                                                                        |  26%  |                                                                                                                               |================================                                                                                       |  26%  |                                                                                                                               |================================                                                                                       |  27%  |                                                                                                                               |=================================                                                                                      |  27%  |                                                                                                                               |=================================                                                                                      |  28%  |                                                                                                                               |==================================                                                                                     |  28%  |                                                                                                                               |==================================                                                                                     |  29%  |                                                                                                                               |===================================                                                                                    |  29%  |                                                                                                                               |===================================                                                                                    |  30%  |                                                                                                                               |====================================                                                                                   |  30%  |                                                                                                                               |====================================                                                                                   |  31%  |                                                                                                                               |=====================================                                                                                  |  31%  |                                                                                                                               |=====================================                                                                                  |  32%  |                                                                                                                               |======================================                                                                                 |  32%  |                                                                                                                               |=======================================                                                                                |  32%  |                                                                                                                               |=======================================                                                                                |  33%  |                                                                                                                               |========================================                                                                               |  33%  |                                                                                                                               |========================================                                                                               |  34%  |                                                                                                                               |=========================================                                                                              |  34%  |                                                                                                                               |=========================================                                                                              |  35%  |                                                                                                                               |==========================================                                                                             |  35%  |                                                                                                                               |==========================================                                                                             |  36%  |                                                                                                                               |===========================================                                                                            |  36%  |                                                                                                                               |===========================================                                                                            |  37%  |                                                                                                                               |============================================                                                                           |  37%  |                                                                                                                               |=============================================                                                                          |  37%  |                                                                                                                               |=============================================                                                                          |  38%  |                                                                                                                               |==============================================                                                                         |  38%  |                                                                                                                               |==============================================                                                                         |  39%  |                                                                                                                               |===============================================                                                                        |  39%  |                                                                                                                               |===============================================                                                                        |  40%  |                                                                                                                               |================================================                                                                       |  40%  |                                                                                                                               |================================================                                                                       |  41%  |                                                                                                                               |=================================================                                                                      |  41%  |                                                                                                                               |=================================================                                                                      |  42%  |                                                                                                                               |==================================================                                                                     |  42%  |                                                                                                                               |===================================================                                                                    |  42%  |                                                                                                                               |===================================================                                                                    |  43%  |                                                                                                                               |====================================================                                                                   |  43%  |                                                                                                                               |====================================================                                                                   |  44%  |                                                                                                                               |=====================================================                                                                  |  44%  |                                                                                                                               |=====================================================                                                                  |  45%  |                                                                                                                               |======================================================                                                                 |  45%  |                                                                                                                               |======================================================                                                                 |  46%  |                                                                                                                               |=======================================================                                                                |  46%  |                                                                                                                               |=======================================================                                                                |  47%  |                                                                                                                               |========================================================                                                               |  47%  |                                                                                                                               |=========================================================                                                              |  47%  |                                                                                                                               |=========================================================                                                              |  48%  |                                                                                                                               |==========================================================                                                             |  48%  |                                                                                                                               |==========================================================                                                             |  49%  |                                                                                                                               |===========================================================                                                            |  49%  |                                                                                                                               |===========================================================                                                            |  50%  |                                                                                                                               |============================================================                                                           |  50%  |                                                                                                                               |============================================================                                                           |  51%  |                                                                                                                               |=============================================================                                                          |  51%  |                                                                                                                               |=============================================================                                                          |  52%  |                                                                                                                               |==============================================================                                                         |  52%  |                                                                                                                               |==============================================================                                                         |  53%  |                                                                                                                               |===============================================================                                                        |  53%  |                                                                                                                               |================================================================                                                       |  53%  |                                                                                                                               |================================================================                                                       |  54%  |                                                                                                                               |=================================================================                                                      |  54%  |                                                                                                                               |=================================================================                                                      |  55%  |                                                                                                                               |==================================================================                                                     |  55%  |                                                                                                                               |==================================================================                                                     |  56%  |                                                                                                                               |===================================================================                                                    |  56%  |                                                                                                                               |===================================================================                                                    |  57%  |                                                                                                                               |====================================================================                                                   |  57%  |                                                                                                                               |====================================================================                                                   |  58%  |                                                                                                                               |=====================================================================                                                  |  58%  |                                                                                                                               |======================================================================                                                 |  58%  |                                                                                                                               |======================================================================                                                 |  59%  |                                                                                                                               |=======================================================================                                                |  59%  |                                                                                                                               |=======================================================================                                                |  60%  |                                                                                                                               |========================================================================                                               |  60%  |                                                                                                                               |========================================================================                                               |  61%  |                                                                                                                               |=========================================================================                                              |  61%  |                                                                                                                               |=========================================================================                                              |  62%  |                                                                                                                               |==========================================================================                                             |  62%  |                                                                                                                               |==========================================================================                                             |  63%  |                                                                                                                               |===========================================================================                                            |  63%  |                                                                                                                               |============================================================================                                           |  63%  |                                                                                                                               |============================================================================                                           |  64%  |                                                                                                                               |=============================================================================                                          |  64%  |                                                                                                                               |=============================================================================                                          |  65%  |                                                                                                                               |==============================================================================                                         |  65%  |                                                                                                                               |==============================================================================                                         |  66%  |                                                                                                                               |===============================================================================                                        |  66%  |                                                                                                                               |===============================================================================                                        |  67%  |                                                                                                                               |================================================================================                                       |  67%  |                                                                                                                               |================================================================================                                       |  68%  |                                                                                                                               |=================================================================================                                      |  68%  |                                                                                                                               |==================================================================================                                     |  68%  |                                                                                                                               |==================================================================================                                     |  69%  |                                                                                                                               |===================================================================================                                    |  69%  |                                                                                                                               |===================================================================================                                    |  70%  |                                                                                                                               |====================================================================================                                   |  70%  |                                                                                                                               |====================================================================================                                   |  71%  |                                                                                                                               |=====================================================================================                                  |  71%  |                                                                                                                               |=====================================================================================                                  |  72%  |                                                                                                                               |======================================================================================                                 |  72%  |                                                                                                                               |======================================================================================                                 |  73%  |                                                                                                                               |=======================================================================================                                |  73%  |                                                                                                                               |=======================================================================================                                |  74%  |                                                                                                                               |========================================================================================                               |  74%  |                                                                                                                               |=========================================================================================                              |  74%  |                                                                                                                               |=========================================================================================                              |  75%  |                                                                                                                               |==========================================================================================                             |  75%  |                                                                                                                               |==========================================================================================                             |  76%  |                                                                                                                               |===========================================================================================                            |  76%  |                                                                                                                               |===========================================================================================                            |  77%  |                                                                                                                               |============================================================================================                           |  77%  |                                                                                                                               |============================================================================================                           |  78%  |                                                                                                                               |=============================================================================================                          |  78%  |                                                                                                                               |=============================================================================================                          |  79%  |                                                                                                                               |==============================================================================================                         |  79%  |                                                                                                                               |===============================================================================================                        |  79%  |                                                                                                                               |===============================================================================================                        |  80%  |                                                                                                                               |================================================================================================                       |  80%  |                                                                                                                               |================================================================================================                       |  81%  |                                                                                                                               |=================================================================================================                      |  81%  |                                                                                                                               |=================================================================================================                      |  82%  |                                                                                                                               |==================================================================================================                     |  82%  |                                                                                                                               |==================================================================================================                     |  83%  |                                                                                                                               |===================================================================================================                    |  83%  |                                                                                                                               |===================================================================================================                    |  84%  |                                                                                                                               |====================================================================================================                   |  84%  |                                                                                                                               |=====================================================================================================                  |  84%  |                                                                                                                               |=====================================================================================================                  |  85%  |                                                                                                                               |======================================================================================================                 |  85%  |                                                                                                                               |======================================================================================================                 |  86%  |                                                                                                                               |=======================================================================================================                |  86%  |                                                                                                                               |=======================================================================================================                |  87%  |                                                                                                                               |========================================================================================================               |  87%  |                                                                                                                               |========================================================================================================               |  88%  |                                                                                                                               |=========================================================================================================              |  88%  |                                                                                                                               |=========================================================================================================              |  89%  |                                                                                                                               |==========================================================================================================             |  89%  |                                                                                                                               |===========================================================================================================            |  89%  |                                                                                                                               |===========================================================================================================            |  90%  |                                                                                                                               |============================================================================================================           |  90%  |                                                                                                                               |============================================================================================================           |  91%  |                                                                                                                               |=============================================================================================================          |  91%  |                                                                                                                               |=============================================================================================================          |  92%  |                                                                                                                               |==============================================================================================================         |  92%  |                                                                                                                               |==============================================================================================================         |  93%  |                                                                                                                               |===============================================================================================================        |  93%  |                                                                                                                               |===============================================================================================================        |  94%  |                                                                                                                               |================================================================================================================       |  94%  |                                                                                                                               |================================================================================================================       |  95%  |                                                                                                                               |=================================================================================================================      |  95%  |                                                                                                                               |==================================================================================================================     |  95%  |                                                                                                                               |==================================================================================================================     |  96%  |                                                                                                                               |===================================================================================================================    |  96%  |                                                                                                                               |===================================================================================================================    |  97%  |                                                                                                                               |====================================================================================================================   |  97%  |                                                                                                                               |====================================================================================================================   |  98%  |                                                                                                                               |=====================================================================================================================  |  98%  |                                                                                                                               |=====================================================================================================================  |  99%  |                                                                                                                               |====================================================================================================================== |  99%  |                                                                                                                               |====================================================================================================================== | 100%  |                                                                                                                               |=======================================================================================================================| 100%

Updated file paths to binaries in databases for F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_026/CalCurCEAS_2024_026_Filtered.rdata and F:/gcp_upload/2_Acoustic-Studies/CalCurCEAS_026/CalCurCEAS_2024_026_ch1.rdata

Create initial output Event Table CSV

To be used for manual scoring based on report figures.

# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents), 
                      species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))

# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
  evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}

# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]

# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop

# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
                                    paste0('eventTable_', params$mission, '_',
                                           params$drift, '_', Sys.Date(),'.csv')))

2419 events (files) in drift. 191 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.

Load reference spectra, if specified

Load the reference spectra for plotting, if set with refSpecList.

# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
#     e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')

refSpecs <- NULL
if (!is.null(refSpecList)){
  refSpecs = list()
  for (rs in refSpecList){
    refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
  }
}

Event summaries

Loop through each detection event (n = 191) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.

Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.

for (iEvent in c(1:nEventsFilt)){
  # iEvent = 6 # for testing
  # ("pagebreak \n")
  
  # extract this event UID string
  eventList <- PAMpal::events(detsFilt)
  eventUID <- names(eventList)[iEvent]
  
  ###### summarize clicks ######
  cl <- clickSummary(detsFilt, eventUID) 
  
  if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
    # keep this in evTable
    evTable$keep[evTable$id == eventUID] <- TRUE
    evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak, 
                                                         na.rm = TRUE)
    
    # set header for this event and print time
    cat('\n\n#### Event ID:   ', names(eventList)[iEvent], '\n')
    cat('Time:   ', format(eventList[[eventUID]]@ancillary$grouping$start, 
                           '%Y-%m-%d %H:%M%Z'), ' to ', 
        format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'), 
        '\n')
    
    cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])), 
        'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
        'filtering.\n')
    cat('\n')
    
    ###### summarize whistles ######
    # wl <- whistleSummary(detsFilt, eventUID)
    # 
    # cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
    # cat('\n')
    
    ###### click plots and table ######
    
    cat('\n##### Click plots and table\n')
    cat('\n SNR histogram includes all filtered clicks. Other plots contain only', 
        'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
        '.\n')
    cat('\n')
    
    
    # if any clicks...
    if (cl$nClicks > 0){
      # histogram of all clicks and SNR >= 15 dB cut off
      xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
      if (any(!is.na(cl$snr))){
        hist(cl$snr, breaks = seq(from = floor(min(cl$snr)), 
                                  to = xMax, by = 2), 
             main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
        abline(v = 15, lty = 2, lwd = 2, col = 'red4')
      }
      
    }
    
    # if sufficient good clicks...
    if (cl$nGoodClicks > 0) {
      # histogram of click durations - good clicks only
      subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
      hist(cl$goodClicks$duration, 
           breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100, 
                        by = 100), main = 'Click duration', sub = subStr,
           xlab = expression(paste('duration [', mu, 's]')))
      abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
      legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
      
      
      cat('\n')
      cat('\n')
      
      
      # Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
      # NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
      # be noisy for single clicks
      # reducing wl can give more accurate noise floor but 'smoother' spectrum
      # increasing wl will give more exact spectrum but may exclude too many 
      # clicks based on SNR (noise measure will overlap with click output; noise
      # is just measured as same wl from start of binary snippet and binaries 
      # binary snippets are v short)
      # Trial and error - 256 works ok for LLHARP data = 1.28 ms
      # NB: JLKM uses 500 for beaked whales with samp rate 288k
      avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256, 
                                         channel = params$channelNum, norm = TRUE,
                                         noise = TRUE, sort = TRUE, snr = 15, 
                                         plot = c(TRUE, FALSE))
      # concatenated spectrogram will get plotted within calculation
      
      # avg spectrum plots separately (bc adding stuff)
      if (!is.null(avgSpec)) {
        # Peak freq as calculated by calculateAvgerageSpectra -for subtitle
        peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
        
        plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0), 
             xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)', 
             main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
        # add grid lines for frequency at 10 kHz intervals
        for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
        # add template spectra
        if (length(refSpecs) > 0){
          rsCols <- rsPalette[1:length(refSpecs)]
          for (rs in 1:length(refSpecs)){
            rsTmp <- refSpecList[rs]
            rsNorm <- refSpecs[[rsTmp]]
            rsMax <- max(rsNorm$dB)
            rsNorm$dBNorm <- rsNorm$dB - rsMax
            lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
          }
        }
        
        # plot noise
        lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
        # plot avg spectrum
        lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
        # also plot median spectrum
        medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
          median(10^(y/20), na.rm = TRUE)}))
        medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
        lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
        
        # add legend
        if (length(refSpecs) > 0){
          legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
                 lty = c(rep(1, length(refSpecs)), 2, 1, 3),
                 lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
                 col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
        } else if (length(refSpecs) == 0){
          legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
                 lty = c(2, 1, 3), lwd = c(2, 3, 2),
                 col = c('black', 'black', 'black'), cex = 0.8)
        }
      }
      
      
      # NB: JLKM BW approach has additional plots here:
      # IPI
      # Waveform of strongest click
      # Wigner plot
      # We are not including those here because not really useful for FKW, but if
      # interested in adding back in, see:
      #       https://github.com/jlkeating/PAMGuard_Event_Code
      
      
      cat('\n')
      cat('\n')
      
      
      # create median stats table for clicks with -15 dB TK noise cut off
      cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with', 
          'SNR >= 15 dB.')
      cat('\n')
      
      cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l', 
                       row.names = FALSE) %>%
            kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
                          full_width = F))
      
    }  else { # no good clicks so no summary plots/table
      cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
    }
    
    
    ###### whistle plots and table ######
    # 
    # cat('\n##### Whistle plots and table\n')
    # 
    # # if whistles present ...
    # if (wl$nWhistles > 0) {
    #   # create median stats table for all whistles
    #   # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
    #   # cat('\n')
    #   
    #   # plot whistle contours
    #   # map the needed binary files
    #   binFiles <- dets@events[[eventUID]]@files$binaries
    #   wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
    #                     binFiles)
    #   wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
    #   
    #   # load them
    #   whBin <- loadMultiBinaries(wmFiles)
    #   # trim to just the event time
    #   whBinEv <- whBin[names(whBin) %in%
    #                      detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
    #   
    #   # #plot - ggplot version/functionized
    #   # pc <- plotContours(whBinEv)
    #   # # print(pc)
    #   # pc + ggtitle(eventUID)
    #   # 
    #   
    #   # get plot limits
    #   # xMax <- 0
    #   # yMax <- 0
    #   # for (wc in 1:length(names(whBinEv))){
    #   #   df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #   #                    freq = whBinEv[[wc]]$freq/1000)
    #   #   xMaxTmp <- max(df$time)
    #   #   yMaxTmp <- max(df$freq)
    #   #   if (xMaxTmp > xMax){xMax <- xMaxTmp}
    #   #   if (yMaxTmp > yMax){yMax <- yMaxTmp}
    #   # }
    #   # or use standard max lims
    #   xMax <- 1.5
    #   yMax <- 20
    #   
    #   # plot each line
    #   plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)), 
    #        xlab = 'Time (s)', ylab = 'Frequency (kHz)', 
    #        main = 'Whistle Contours')
    #   # add grid lines for frequency at 0.125 s and 5 kHz intervals
    #   for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
    #                                          col="lightgray")}
    #   for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
    #                                       col="lightgray")}
    #   # loop through each contour
    #   for (wc in 1:length(names(whBinEv))){
    #     df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #                      freq = whBinEv[[wc]]$freq/1000)
    #     lines(df$time, df$freq, col = rgb(0,0,0,0.4))
    #   }
    #   
    #   # plot histogram of median frequency
    #   hist(wl$wh$freqMedian/1000, 
    #        breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
    #        main = 'Histogram of whistle median frequency', 
    #        xlab = 'Median frequency (kHz)')
    #   
    #   cat('\n')
    #   cat('\n')
    #   
    #   cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
    #   # create median stats table for all whistles
    #   cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l', 
    #                    row.names = FALSE) %>%
    #         kable_styling(bootstrap_options = c('basic', 'condensed'),
    #                       full_width = F))
    #   
    # } else {
    #   cat('\nNo whistles present.\n')
    # }
    
    cat('\n')
    cat('\n\n --- \n\n')
    cat('\n')
  }# num clicks/peak freq check 
} # loop

Event ID: 7939.241122224202.wav

Time: 2024-11-22 22:42UTC to 2024-11-22 22:48UTC

Event contains 480 original clicks, 240 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 61 clicks) .

Median statistics for 61 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 13.2
Median 3dB Center Frequency [kHz] 10.8
Median 10dB Center Frequency [kHz] 10.7
Median 3dB Bandwidth [kHz] (lower-upper) 0.703 (10.6 - 11.1)
Median 10dB Bandwidth [kHz] (lower-upper) 1.66 ( 9.9 - 11.6)
Median duration [μs] (25-75 percentile) 115 (10 - 276)

Event ID: 7939.241123103602.wav

Time: 2024-11-23 10:36UTC to 2024-11-23 10:42UTC

Event contains 592 original clicks, 296 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 46 clicks) .

Median statistics for 46 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.6
Median 3dB Center Frequency [kHz] 10.3
Median 10dB Center Frequency [kHz] 10.2
Median 3dB Bandwidth [kHz] (lower-upper) 0.552 (9.95 - 10.5)
Median 10dB Bandwidth [kHz] (lower-upper) 1.17 (9.68 - 10.8)
Median duration [μs] (25-75 percentile) 21 (0 - 263)

Event ID: 7939.241123165402.wav

Time: 2024-11-23 16:54UTC to 2024-11-23 17:00UTC

Event contains 408 original clicks, 204 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 129 clicks) .

Median statistics for 129 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.39
Median 10dB Center Frequency [kHz] 8.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (7.44 - 8.91)
Median 10dB Bandwidth [kHz] (lower-upper) 4.24 (5.94 - 10.1)
Median duration [μs] (25-75 percentile) 89 (5 - 214)

Event ID: 7939.241124105402.wav

Time: 2024-11-24 10:54UTC to 2024-11-24 11:00UTC

Event contains 652 original clicks, 326 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 314 clicks) .

Median statistics for 314 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12.4
Median 3dB Center Frequency [kHz] 11.5
Median 10dB Center Frequency [kHz] 11.5
Median 3dB Bandwidth [kHz] (lower-upper) 0.999 ( 11 - 12)
Median 10dB Bandwidth [kHz] (lower-upper) 2.56 (10.3 - 12.7)
Median duration [μs] (25-75 percentile) 348 (161 - 1000)

Event ID: 7939.241124110002.wav

Time: 2024-11-24 11:00UTC to 2024-11-24 11:06UTC

Event contains 870 original clicks, 435 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 385 clicks) .

Median statistics for 385 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 8.46
Median 10dB Center Frequency [kHz] 8.28
Median 3dB Bandwidth [kHz] (lower-upper) 0.954 (8.09 - 8.98)
Median 10dB Bandwidth [kHz] (lower-upper) 2.55 (6.77 - 9.55)
Median duration [μs] (25-75 percentile) 276 (23 - 1000)

Event ID: 7939.241124110602.wav

Time: 2024-11-24 11:06UTC to 2024-11-24 11:12UTC

Event contains 808 original clicks, 404 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 342 clicks) .

Median statistics for 342 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 6.25
Median 10dB Center Frequency [kHz] 6.73
Median 3dB Bandwidth [kHz] (lower-upper) 0.99 (5.52 - 7.27)
Median 10dB Bandwidth [kHz] (lower-upper) 2.58 (4.84 - 8.93)
Median duration [μs] (25-75 percentile) 551 (142 - 1217)

Event ID: 7939.241124111202.wav

Time: 2024-11-24 11:12UTC to 2024-11-24 11:18UTC

Event contains 800 original clicks, 400 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 367 clicks) .

Median statistics for 367 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 8.83
Median 10dB Center Frequency [kHz] 8.8
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (8.34 - 9.28)
Median 10dB Bandwidth [kHz] (lower-upper) 2.43 (7.82 - 9.71)
Median duration [μs] (25-75 percentile) 571 (317 - 1000)

Event ID: 7939.241124111802.wav

Time: 2024-11-24 11:18UTC to 2024-11-24 11:24UTC

Event contains 1010 original clicks, 505 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 479 clicks) .

Median statistics for 479 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 9.08
Median 10dB Center Frequency [kHz] 9.31
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (8.63 - 9.53)
Median 10dB Bandwidth [kHz] (lower-upper) 2.7 (8.02 - 10.4)
Median duration [μs] (25-75 percentile) 537 (113 - 1146)

Event ID: 7939.241124112402.wav

Time: 2024-11-24 11:24UTC to 2024-11-24 11:30UTC

Event contains 1562 original clicks, 781 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 741 clicks) .

Median statistics for 741 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 9.38
Median 10dB Center Frequency [kHz] 9.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (8.99 - 9.85)
Median 10dB Bandwidth [kHz] (lower-upper) 2.78 (8.16 - 10.7)
Median duration [μs] (25-75 percentile) 487 (3 - 1000)

Event ID: 7939.241124113002.wav

Time: 2024-11-24 11:30UTC to 2024-11-24 11:36UTC

Event contains 1082 original clicks, 541 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 518 clicks) .

Median statistics for 518 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12.4
Median 3dB Center Frequency [kHz] 11.9
Median 10dB Center Frequency [kHz] 12.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (11.3 - 12.6)
Median 10dB Bandwidth [kHz] (lower-upper) 3.07 (10.3 - 13.7)
Median duration [μs] (25-75 percentile) 759 (125 - 1262)

Event ID: 7939.241124113602.wav

Time: 2024-11-24 11:36UTC to 2024-11-24 11:42UTC

Event contains 2126 original clicks, 1063 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 983 clicks) .

Median statistics for 983 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 7.44
Median 10dB Center Frequency [kHz] 7.66
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 ( 6.8 - 8.05)
Median 10dB Bandwidth [kHz] (lower-upper) 2.54 (6.05 - 9.09)
Median duration [μs] (25-75 percentile) 498 (0 - 1000)

Event ID: 7939.241124114202.wav

Time: 2024-11-24 11:42UTC to 2024-11-24 11:48UTC

Event contains 2572 original clicks, 1286 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1182 clicks) .

Median statistics for 1182 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.14
Median 10dB Center Frequency [kHz] 5.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 (4.66 - 5.8)
Median 10dB Bandwidth [kHz] (lower-upper) 2.53 (4.14 - 6.9)
Median duration [μs] (25-75 percentile) 414 (5 - 1000)

Event ID: 7939.241124114802.wav

Time: 2024-11-24 11:48UTC to 2024-11-24 11:54UTC

Event contains 1050 original clicks, 525 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 492 clicks) .

Median statistics for 492 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12.4
Median 3dB Center Frequency [kHz] 11.9
Median 10dB Center Frequency [kHz] 12.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (11.1 - 12.5)
Median 10dB Bandwidth [kHz] (lower-upper) 2.69 (10.3 - 13.7)
Median duration [μs] (25-75 percentile) 331 (17 - 1000)

Event ID: 7939.241124130002.wav

Time: 2024-11-24 13:00UTC to 2024-11-24 13:06UTC

Event contains 830 original clicks, 415 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 379 clicks) .

Median statistics for 379 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 9.26
Median 10dB Center Frequency [kHz] 10.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (8.71 - 9.99)
Median 10dB Bandwidth [kHz] (lower-upper) 2.97 (8.23 - 12.9)
Median duration [μs] (25-75 percentile) 657 (150 - 1092)

Event ID: 7939.241124130602.wav

Time: 2024-11-24 13:06UTC to 2024-11-24 13:12UTC

Event contains 936 original clicks, 468 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 442 clicks) .

Median statistics for 442 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.6
Median 3dB Center Frequency [kHz] 9.1
Median 10dB Center Frequency [kHz] 9.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (8.58 - 9.61)
Median 10dB Bandwidth [kHz] (lower-upper) 2.8 (7.89 - 10.5)
Median duration [μs] (25-75 percentile) 486 (100 - 1000)

Event ID: 7939.241124131802.wav

Time: 2024-11-24 13:18UTC to 2024-11-24 13:24UTC

Event contains 2296 original clicks, 1148 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1071 clicks) .

Median statistics for 1071 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.2
Median 10dB Center Frequency [kHz] 5.68
Median 3dB Bandwidth [kHz] (lower-upper) 0.923 ( 5.8 - 6.59)
Median 10dB Bandwidth [kHz] (lower-upper) 2.42 (4.25 - 7.64)
Median duration [μs] (25-75 percentile) 446 (0 - 1000)

Event ID: 7939.241124132402.wav

Time: 2024-11-24 13:24UTC to 2024-11-24 13:30UTC

Event contains 2056 original clicks, 1028 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 905 clicks) .

Median statistics for 905 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.6
Median 3dB Center Frequency [kHz] 8.97
Median 10dB Center Frequency [kHz] 8.89
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (8.56 - 9.3)
Median 10dB Bandwidth [kHz] (lower-upper) 2.75 (8.08 - 9.72)
Median duration [μs] (25-75 percentile) 229 (0 - 1000)

Event ID: 7939.241125073003.wav

Time: 2024-11-25 07:30UTC to 2024-11-25 07:36UTC

Event contains 1036 original clicks, 518 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 345 clicks) .

Median statistics for 345 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.61
Median 10dB Center Frequency [kHz] 8.59
Median 3dB Bandwidth [kHz] (lower-upper) 0.855 (8.26 - 8.97)
Median 10dB Bandwidth [kHz] (lower-upper) 2.16 (7.55 - 9.35)
Median duration [μs] (25-75 percentile) 0 (0 - 5)

Event ID: 7939.241126004203.wav

Time: 2024-11-26 00:42UTC to 2024-11-26 00:48UTC

Event contains 924 original clicks, 462 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 297 clicks) .

Median statistics for 297 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.04
Median 10dB Center Frequency [kHz] 5.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (5.44 - 6.58)
Median 10dB Bandwidth [kHz] (lower-upper) 2.66 (4.39 - 7.61)
Median duration [μs] (25-75 percentile) 23 (0 - 167)

Event ID: 7939.241126004803.wav

Time: 2024-11-26 00:48UTC to 2024-11-26 00:54UTC

Event contains 1384 original clicks, 692 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 402 clicks) .

Median statistics for 402 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 5.78
Median 3dB Bandwidth [kHz] (lower-upper) 0.973 (5.26 - 6.4)
Median 10dB Bandwidth [kHz] (lower-upper) 2.98 (4.17 - 7.5)
Median duration [μs] (25-75 percentile) 31 (0 - 138)

Event ID: 7939.241126013603.wav

Time: 2024-11-26 01:36UTC to 2024-11-26 01:42UTC

Event contains 554 original clicks, 277 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 223 clicks) .

Median statistics for 223 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.03
Median 10dB Center Frequency [kHz] 5.77
Median 3dB Bandwidth [kHz] (lower-upper) 0.912 (5.52 - 6.58)
Median 10dB Bandwidth [kHz] (lower-upper) 2.57 (4.25 - 7.17)
Median duration [μs] (25-75 percentile) 201 (0 - 1000)

Event ID: 7939.241126143603.wav

Time: 2024-11-26 14:36UTC to 2024-11-26 14:42UTC

Event contains 444 original clicks, 222 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 50 clicks) .

Median statistics for 50 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 8.99
Median 10dB Center Frequency [kHz] 8.62
Median 3dB Bandwidth [kHz] (lower-upper) 0.932 (8.27 - 9.34)
Median 10dB Bandwidth [kHz] (lower-upper) 2.85 (7.08 - 10.6)
Median duration [μs] (25-75 percentile) 218 (100 - 1000)

Event ID: 7939.241126215403.wav

Time: 2024-11-26 21:54UTC to 2024-11-26 22:00UTC

Event contains 726 original clicks, 363 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 71 clicks) .

Median statistics for 71 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10
Median 3dB Center Frequency [kHz] 10.1
Median 10dB Center Frequency [kHz] 10.1
Median 3dB Bandwidth [kHz] (lower-upper) 0.582 (9.83 - 10.4)
Median 10dB Bandwidth [kHz] (lower-upper) 1.42 (9.47 - 10.8)
Median duration [μs] (25-75 percentile) 50 (0 - 297)

Event ID: 7939.241127070603.wav

Time: 2024-11-27 07:06UTC to 2024-11-27 07:12UTC

Event contains 540 original clicks, 270 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .

Median statistics for 198 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 8.79
Median 10dB Center Frequency [kHz] 9.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.58 (7.53 - 9.88)
Median 10dB Bandwidth [kHz] (lower-upper) 4.99 (6.16 - 12.3)
Median duration [μs] (25-75 percentile) 168 (100 - 1000)

Event ID: 7939.241127093003.wav

Time: 2024-11-27 09:30UTC to 2024-11-27 09:36UTC

Event contains 764 original clicks, 382 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 291 clicks) .

Median statistics for 291 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 7.99
Median 10dB Center Frequency [kHz] 8.55
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 (7.12 - 9.29)
Median 10dB Bandwidth [kHz] (lower-upper) 5.85 (4.86 - 12.7)
Median duration [μs] (25-75 percentile) 336 (100 - 1000)

Event ID: 7939.241127150003.wav

Time: 2024-11-27 15:00UTC to 2024-11-27 15:06UTC

Event contains 426 original clicks, 213 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 169 clicks) .

Median statistics for 169 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.26
Median 10dB Center Frequency [kHz] 7.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (6.69 - 7.9)
Median 10dB Bandwidth [kHz] (lower-upper) 3.45 (5.53 - 9.11)
Median duration [μs] (25-75 percentile) 352 (0 - 1000)

Event ID: 7939.241127150603.wav

Time: 2024-11-27 15:06UTC to 2024-11-27 15:12UTC

Event contains 436 original clicks, 218 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 175 clicks) .

Median statistics for 175 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.14
Median 10dB Center Frequency [kHz] 7.15
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (6.37 - 7.72)
Median 10dB Bandwidth [kHz] (lower-upper) 3.38 ( 5.4 - 9.22)
Median duration [μs] (25-75 percentile) 910 (155 - 1286)

Event ID: 7939.241127151203.wav

Time: 2024-11-27 15:12UTC to 2024-11-27 15:18UTC

Event contains 504 original clicks, 252 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 224 clicks) .

Median statistics for 224 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.21
Median 10dB Center Frequency [kHz] 7.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.36 - 7.83)
Median 10dB Bandwidth [kHz] (lower-upper) 3.52 (5.02 - 9.73)
Median duration [μs] (25-75 percentile) 1013 (410 - 1472)

Event ID: 7939.241127151803.wav

Time: 2024-11-27 15:18UTC to 2024-11-27 15:24UTC

Event contains 466 original clicks, 233 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 221 clicks) .

Median statistics for 221 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.96
Median 10dB Center Frequency [kHz] 6.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (5.28 - 6.86)
Median 10dB Bandwidth [kHz] (lower-upper) 3.41 (4.34 - 8.07)
Median duration [μs] (25-75 percentile) 980 (443 - 1426)

Event ID: 7939.241127152403.wav

Time: 2024-11-27 15:24UTC to 2024-11-27 15:30UTC

Event contains 454 original clicks, 227 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 211 clicks) .

Median statistics for 211 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.83
Median 10dB Center Frequency [kHz] 6.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (4.86 - 6.81)
Median 10dB Bandwidth [kHz] (lower-upper) 4.37 ( 3.5 - 8.36)
Median duration [μs] (25-75 percentile) 1202 (356 - 1554)

Event ID: 7939.241127153003.wav

Time: 2024-11-27 15:30UTC to 2024-11-27 15:36UTC

Event contains 502 original clicks, 251 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 238 clicks) .

Median statistics for 238 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.96
Median 10dB Center Frequency [kHz] 6.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (5.23 - 6.98)
Median 10dB Bandwidth [kHz] (lower-upper) 4.09 ( 3.8 - 8.66)
Median duration [μs] (25-75 percentile) 1305 (1000 - 2315)

Event ID: 7939.241127155403.wav

Time: 2024-11-27 15:54UTC to 2024-11-27 16:00UTC

Event contains 404 original clicks, 202 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 140 clicks) .

Median statistics for 140 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.78
Median 10dB Center Frequency [kHz] 7.16
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (5.91 - 7.71)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (4.88 - 9.17)
Median duration [μs] (25-75 percentile) 991 (192 - 1912)

Event ID: 7939.241127161203.wav

Time: 2024-11-27 16:12UTC to 2024-11-27 16:18UTC

Event contains 660 original clicks, 330 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 295 clicks) .

Median statistics for 295 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.14
Median 10dB Center Frequency [kHz] 8.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (7.43 - 9.13)
Median 10dB Bandwidth [kHz] (lower-upper) 3.69 (5.35 - 10.9)
Median duration [μs] (25-75 percentile) 1152 (239 - 1777)

Event ID: 7939.241127161803.wav

Time: 2024-11-27 16:18UTC to 2024-11-27 16:24UTC

Event contains 1006 original clicks, 503 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 478 clicks) .

Median statistics for 478 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.71
Median 10dB Center Frequency [kHz] 7.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (5.92 - 7.67)
Median 10dB Bandwidth [kHz] (lower-upper) 4.13 (4.29 - 9.25)
Median duration [μs] (25-75 percentile) 962 (144 - 1873)

Event ID: 7939.241127162403.wav

Time: 2024-11-27 16:24UTC to 2024-11-27 16:30UTC

Event contains 722 original clicks, 361 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 345 clicks) .

Median statistics for 345 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.91
Median 10dB Center Frequency [kHz] 6.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 (5.08 - 6.74)
Median 10dB Bandwidth [kHz] (lower-upper) 3.51 (3.72 - 8.31)
Median duration [μs] (25-75 percentile) 1288 (206 - 2177)

Event ID: 7939.241127164803.wav

Time: 2024-11-27 16:48UTC to 2024-11-27 16:54UTC

Event contains 676 original clicks, 338 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 299 clicks) .

Median statistics for 299 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.87
Median 10dB Center Frequency [kHz] 6.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (4.85 - 6.93)
Median 10dB Bandwidth [kHz] (lower-upper) 3.69 (3.74 - 8.25)
Median duration [μs] (25-75 percentile) 1449 (1000 - 2222)

Event ID: 7939.241127165403.wav

Time: 2024-11-27 16:54UTC to 2024-11-27 17:00UTC

Event contains 814 original clicks, 407 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 386 clicks) .

Median statistics for 386 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.45
Median 10dB Center Frequency [kHz] 5.8
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (4.72 - 6.16)
Median 10dB Bandwidth [kHz] (lower-upper) 3.16 ( 3.7 - 7.78)
Median duration [μs] (25-75 percentile) 1367 (381 - 1986)

Event ID: 7939.241127171203.wav

Time: 2024-11-27 17:12UTC to 2024-11-27 17:18UTC

Event contains 432 original clicks, 216 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 182 clicks) .

Median statistics for 182 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.92
Median 10dB Center Frequency [kHz] 6.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.24 - 7.5)
Median 10dB Bandwidth [kHz] (lower-upper) 2.97 (5.28 - 8.26)
Median duration [μs] (25-75 percentile) 1629 (1000 - 2202)

Event ID: 7939.241127174203.wav

Time: 2024-11-27 17:42UTC to 2024-11-27 17:48UTC

Event contains 634 original clicks, 317 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 271 clicks) .

Median statistics for 271 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.71
Median 10dB Center Frequency [kHz] 6.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (5.13 - 6.46)
Median 10dB Bandwidth [kHz] (lower-upper) 3.66 (3.74 - 8.31)
Median duration [μs] (25-75 percentile) 1541 (1101 - 2336)

Event ID: 7939.241127183003.wav

Time: 2024-11-27 18:30UTC to 2024-11-27 18:36UTC

Event contains 570 original clicks, 285 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 254 clicks) .

Median statistics for 254 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.67
Median 10dB Center Frequency [kHz] 6.75
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (6.09 - 7.23)
Median 10dB Bandwidth [kHz] (lower-upper) 3.89 ( 4.7 - 8.92)
Median duration [μs] (25-75 percentile) 936 (260 - 1498)

Event ID: 7939.241127183603.wav

Time: 2024-11-27 18:36UTC to 2024-11-27 18:42UTC

Event contains 898 original clicks, 449 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 412 clicks) .

Median statistics for 412 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.25
Median 10dB Center Frequency [kHz] 7.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (6.59 - 7.88)
Median 10dB Bandwidth [kHz] (lower-upper) 3.6 (5.51 - 9.3)
Median duration [μs] (25-75 percentile) 894 (270 - 1298)

Event ID: 7939.241127184803.wav

Time: 2024-11-27 18:48UTC to 2024-11-27 18:54UTC

Event contains 448 original clicks, 224 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 208 clicks) .

Median statistics for 208 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.91
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 0.922 (5.26 - 6.43)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (3.82 - 8.41)
Median duration [μs] (25-75 percentile) 1117 (100 - 1790)

Event ID: 7939.241127185403.wav

Time: 2024-11-27 18:54UTC to 2024-11-27 19:00UTC

Event contains 436 original clicks, 218 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 196 clicks) .

Median statistics for 196 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.31
Median 10dB Center Frequency [kHz] 6.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (5.41 - 6.83)
Median 10dB Bandwidth [kHz] (lower-upper) 3.82 (4.03 - 8.38)
Median duration [μs] (25-75 percentile) 988 (284 - 1696)

Event ID: 7939.241127190003.wav

Time: 2024-11-27 19:00UTC to 2024-11-27 19:06UTC

Event contains 952 original clicks, 476 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 417 clicks) .

Median statistics for 417 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.71
Median 10dB Center Frequency [kHz] 6.59
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.84 - 7.35)
Median 10dB Bandwidth [kHz] (lower-upper) 3.82 (4.07 - 8.77)
Median duration [μs] (25-75 percentile) 766 (0 - 1676)

Event ID: 7939.241127190603.wav

Time: 2024-11-27 19:06UTC to 2024-11-27 19:12UTC

Event contains 1330 original clicks, 665 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 513 clicks) .

Median statistics for 513 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.6
Median 10dB Center Frequency [kHz] 6.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.86 - 7.59)
Median 10dB Bandwidth [kHz] (lower-upper) 4.15 (4.25 - 9.15)
Median duration [μs] (25-75 percentile) 224 (0 - 1000)

Event ID: 7939.241127191203.wav

Time: 2024-11-27 19:12UTC to 2024-11-27 19:18UTC

Event contains 1356 original clicks, 678 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 642 clicks) .

Median statistics for 642 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.38
Median 10dB Center Frequency [kHz] 6.65
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 ( 5.8 - 7.05)
Median 10dB Bandwidth [kHz] (lower-upper) 3.37 (4.23 - 8.76)
Median duration [μs] (25-75 percentile) 26 (0 - 1000)

Event ID: 7939.241127191803.wav

Time: 2024-11-27 19:18UTC to 2024-11-27 19:24UTC

Event contains 1246 original clicks, 623 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 592 clicks) .

Median statistics for 592 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.09
Median 3dB Bandwidth [kHz] (lower-upper) 1 (5.27 - 6.67)
Median 10dB Bandwidth [kHz] (lower-upper) 3.17 (4.05 - 8.17)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7939.241127192403.wav

Time: 2024-11-27 19:24UTC to 2024-11-27 19:30UTC

Event contains 1054 original clicks, 527 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 498 clicks) .

Median statistics for 498 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.08
Median 10dB Center Frequency [kHz] 7.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (6.46 - 7.73)
Median 10dB Bandwidth [kHz] (lower-upper) 3.48 (4.84 - 9.27)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7939.241127193003.wav

Time: 2024-11-27 19:30UTC to 2024-11-27 19:36UTC

Event contains 958 original clicks, 479 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 439 clicks) .

Median statistics for 439 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.32
Median 10dB Center Frequency [kHz] 8.56
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (7.82 - 8.71)
Median 10dB Bandwidth [kHz] (lower-upper) 3.37 ( 6.1 - 10.6)
Median duration [μs] (25-75 percentile) 0 (0 - 452)

Event ID: 7939.241127193603.wav

Time: 2024-11-27 19:36UTC to 2024-11-27 19:42UTC

Event contains 1092 original clicks, 546 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 494 clicks) .

Median statistics for 494 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.95
Median 10dB Center Frequency [kHz] 7.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (7.43 - 8.49)
Median 10dB Bandwidth [kHz] (lower-upper) 3.74 (5.57 - 9.7)
Median duration [μs] (25-75 percentile) 34 (0 - 1296)

Event ID: 7939.241127194203.wav

Time: 2024-11-27 19:42UTC to 2024-11-27 19:48UTC

Event contains 758 original clicks, 379 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 331 clicks) .

Median statistics for 331 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.6
Median 10dB Center Frequency [kHz] 8.84
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 (7.82 - 9.18)
Median 10dB Bandwidth [kHz] (lower-upper) 3.97 (5.52 - 10.7)
Median duration [μs] (25-75 percentile) 36 (0 - 1419)

Event ID: 7939.241127194803.wav

Time: 2024-11-27 19:48UTC to 2024-11-27 19:54UTC

Event contains 924 original clicks, 462 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 361 clicks) .

Median statistics for 361 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.4
Median 10dB Center Frequency [kHz] 10.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (9.77 - 10.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (7.59 - 12.1)
Median duration [μs] (25-75 percentile) 16 (0 - 1413)

Event ID: 7939.241127195403.wav

Time: 2024-11-27 19:54UTC to 2024-11-27 20:00UTC

Event contains 812 original clicks, 406 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 366 clicks) .

Median statistics for 366 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 9.17
Median 10dB Center Frequency [kHz] 9.45
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (8.42 - 9.88)
Median 10dB Bandwidth [kHz] (lower-upper) 4.63 ( 6 - 12)
Median duration [μs] (25-75 percentile) 159 (0 - 1485)

Event ID: 7939.241127200003.wav

Time: 2024-11-27 20:00UTC to 2024-11-27 20:06UTC

Event contains 870 original clicks, 435 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 387 clicks) .

Median statistics for 387 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.44
Median 10dB Center Frequency [kHz] 8.7
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 ( 7.9 - 9.3)
Median 10dB Bandwidth [kHz] (lower-upper) 4.01 (5.92 - 10.9)
Median duration [μs] (25-75 percentile) 545 (0 - 1592)

Event ID: 7939.241127200603.wav

Time: 2024-11-27 20:06UTC to 2024-11-27 20:12UTC

Event contains 1452 original clicks, 726 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 680 clicks) .

Median statistics for 680 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.38
Median 10dB Center Frequency [kHz] 7.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (6.68 - 7.96)
Median 10dB Bandwidth [kHz] (lower-upper) 3.8 ( 4.6 - 9.56)
Median duration [μs] (25-75 percentile) 1052 (0 - 1853)

Event ID: 7939.241127201203.wav

Time: 2024-11-27 20:12UTC to 2024-11-27 20:18UTC

Event contains 1108 original clicks, 554 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 483 clicks) .

Median statistics for 483 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.01
Median 10dB Center Frequency [kHz] 6.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (5.14 - 6.96)
Median 10dB Bandwidth [kHz] (lower-upper) 3.92 (3.83 - 8.74)
Median duration [μs] (25-75 percentile) 756 (42 - 1383)

Event ID: 7939.241127201803.wav

Time: 2024-11-27 20:18UTC to 2024-11-27 20:24UTC

Event contains 518 original clicks, 259 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 207 clicks) .

Median statistics for 207 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 6.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (5.03 - 6.36)
Median 10dB Bandwidth [kHz] (lower-upper) 3.61 (4.09 - 8.43)
Median duration [μs] (25-75 percentile) 1220 (1000 - 1684)

Event ID: 7939.241127203003.wav

Time: 2024-11-27 20:30UTC to 2024-11-27 20:36UTC

Event contains 450 original clicks, 225 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 199 clicks) .

Median statistics for 199 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.55
Median 10dB Center Frequency [kHz] 6.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (5.73 - 7.28)
Median 10dB Bandwidth [kHz] (lower-upper) 4.08 (4.15 - 8.6)
Median duration [μs] (25-75 percentile) 717 (111 - 1216)

Event ID: 7939.241127203603.wav

Time: 2024-11-27 20:36UTC to 2024-11-27 20:42UTC

Event contains 896 original clicks, 448 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 402 clicks) .

Median statistics for 402 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.67
Median 10dB Center Frequency [kHz] 6.88
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (5.94 - 7.47)
Median 10dB Bandwidth [kHz] (lower-upper) 4.25 ( 4.6 - 9.13)
Median duration [μs] (25-75 percentile) 575 (0 - 1348)

Event ID: 7939.241127204203.wav

Time: 2024-11-27 20:42UTC to 2024-11-27 20:48UTC

Event contains 788 original clicks, 394 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 371 clicks) .

Median statistics for 371 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.53
Median 10dB Center Frequency [kHz] 7.19
Median 3dB Bandwidth [kHz] (lower-upper) 1.65 (6.61 - 8.29)
Median 10dB Bandwidth [kHz] (lower-upper) 4.52 (4.57 - 9.66)
Median duration [μs] (25-75 percentile) 1064 (267 - 2096)

Event ID: 7939.241127205403.wav

Time: 2024-11-27 20:54UTC to 2024-11-27 21:00UTC

Event contains 746 original clicks, 373 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 349 clicks) .

Median statistics for 349 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.94
Median 10dB Center Frequency [kHz] 6.19
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (5.05 - 6.84)
Median 10dB Bandwidth [kHz] (lower-upper) 3.84 ( 3.9 - 8.57)
Median duration [μs] (25-75 percentile) 620 (100 - 1220)

Event ID: 7939.241127213003.wav

Time: 2024-11-27 21:30UTC to 2024-11-27 21:36UTC

Event contains 630 original clicks, 315 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 237 clicks) .

Median statistics for 237 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.08
Median 10dB Center Frequency [kHz] 6.32
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.49 - 6.68)
Median 10dB Bandwidth [kHz] (lower-upper) 3.09 (4.31 - 7.69)
Median duration [μs] (25-75 percentile) 1134 (464 - 1984)

Event ID: 7939.241127215403.wav

Time: 2024-11-27 21:54UTC to 2024-11-27 22:00UTC

Event contains 422 original clicks, 211 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 187 clicks) .

Median statistics for 187 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.57
Median 10dB Center Frequency [kHz] 6.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 ( 5.9 - 7.28)
Median 10dB Bandwidth [kHz] (lower-upper) 3.89 (4.22 - 8.63)
Median duration [μs] (25-75 percentile) 918 (194 - 1532)

Event ID: 7939.241127220003.wav

Time: 2024-11-27 22:00UTC to 2024-11-27 22:06UTC

Event contains 652 original clicks, 326 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 304 clicks) .

Median statistics for 304 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.95
Median 10dB Center Frequency [kHz] 7.19
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (6.13 - 7.67)
Median 10dB Bandwidth [kHz] (lower-upper) 3.85 ( 5 - 9.26)
Median duration [μs] (25-75 percentile) 712 (272 - 1354)

Event ID: 7939.241127220603.wav

Time: 2024-11-27 22:06UTC to 2024-11-27 22:12UTC

Event contains 554 original clicks, 277 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 246 clicks) .

Median statistics for 246 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.42
Median 3dB Bandwidth [kHz] (lower-upper) 0.933 ( 5.4 - 6.42)
Median 10dB Bandwidth [kHz] (lower-upper) 3.13 ( 4.6 - 8.12)
Median duration [μs] (25-75 percentile) 577 (40 - 1135)

Event ID: 7939.241128030003.wav

Time: 2024-11-28 03:00UTC to 2024-11-28 03:06UTC

Event contains 736 original clicks, 368 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 314 clicks) .

Median statistics for 314 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 5.24
Median 10dB Center Frequency [kHz] 6.63
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (4.55 - 6.2)
Median 10dB Bandwidth [kHz] (lower-upper) 3.65 (3.59 - 9.4)
Median duration [μs] (25-75 percentile) 439 (142 - 1000)

Event ID: 7939.241128064803.wav

Time: 2024-11-28 06:48UTC to 2024-11-28 06:54UTC

Event contains 1184 original clicks, 592 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 508 clicks) .

Median statistics for 508 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.6
Median 3dB Center Frequency [kHz] 11.4
Median 10dB Center Frequency [kHz] 11.2
Median 3dB Bandwidth [kHz] (lower-upper) 0.975 (10.7 - 11.9)
Median 10dB Bandwidth [kHz] (lower-upper) 2.39 (9.54 - 12.6)
Median duration [μs] (25-75 percentile) 0 (0 - 299)

Event ID: 7939.241128065403.wav

Time: 2024-11-28 06:54UTC to 2024-11-28 07:00UTC

Event contains 542 original clicks, 271 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 204 clicks) .

Median statistics for 204 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 11.2
Median 3dB Center Frequency [kHz] 10.9
Median 10dB Center Frequency [kHz] 11.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (9.82 - 11.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.24 ( 9.3 - 12.7)
Median duration [μs] (25-75 percentile) 2.6 (0 - 327)

Event ID: 7939.241128170603.wav

Time: 2024-11-28 17:06UTC to 2024-11-28 17:12UTC

Event contains 410 original clicks, 205 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 121 clicks) .

Median statistics for 121 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.37
Median 10dB Center Frequency [kHz] 9
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 ( 7.5 - 9)
Median 10dB Bandwidth [kHz] (lower-upper) 4.63 (6.17 - 11.1)
Median duration [μs] (25-75 percentile) 99 (13 - 425)

Event ID: 7939.241129220946.wav

Time: 2024-11-29 22:09UTC to 2024-11-29 22:15UTC

Event contains 466 original clicks, 233 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 183 clicks) .

Median statistics for 183 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.01
Median 10dB Center Frequency [kHz] 5.85
Median 3dB Bandwidth [kHz] (lower-upper) 0.908 (5.53 - 6.53)
Median 10dB Bandwidth [kHz] (lower-upper) 2.57 (4.52 - 7.11)
Median duration [μs] (25-75 percentile) 214 (0 - 1000)

Event ID: 7939.241129221546.wav

Time: 2024-11-29 22:15UTC to 2024-11-29 22:21UTC

Event contains 640 original clicks, 320 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 231 clicks) .

Median statistics for 231 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.12
Median 10dB Center Frequency [kHz] 6.03
Median 3dB Bandwidth [kHz] (lower-upper) 0.892 (5.67 - 6.57)
Median 10dB Bandwidth [kHz] (lower-upper) 2.47 (4.72 - 7.31)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7939.241129222746.wav

Time: 2024-11-29 22:27UTC to 2024-11-29 22:33UTC

Event contains 1446 original clicks, 723 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 526 clicks) .

Median statistics for 526 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.8
Median 10dB Center Frequency [kHz] 5.79
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (5.27 - 6.45)
Median 10dB Bandwidth [kHz] (lower-upper) 2.53 (4.48 - 7.13)
Median duration [μs] (25-75 percentile) 85 (0 - 330)

Event ID: 7939.241129223946.wav

Time: 2024-11-29 22:39UTC to 2024-11-29 22:45UTC

Event contains 10154 original clicks, 5077 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4084 clicks) .

Median statistics for 4084 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.05
Median 10dB Center Frequency [kHz] 6.05
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 (5.35 - 6.76)
Median 10dB Bandwidth [kHz] (lower-upper) 3.15 (4.34 - 7.67)
Median duration [μs] (25-75 percentile) 237 (0 - 1000)

Event ID: 7939.241129225146.wav

Time: 2024-11-29 22:51UTC to 2024-11-29 22:57UTC

Event contains 2896 original clicks, 1448 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1063 clicks) .

Median statistics for 1063 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.8
Median 10dB Center Frequency [kHz] 5.89
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (5.21 - 6.42)
Median 10dB Bandwidth [kHz] (lower-upper) 2.87 ( 4.3 - 7.39)
Median duration [μs] (25-75 percentile) 271 (0 - 1000)

Event ID: 7939.241129230346.wav

Time: 2024-11-29 23:03UTC to 2024-11-29 23:09UTC

Event contains 1406 original clicks, 703 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 578 clicks) .

Median statistics for 578 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.98
Median 10dB Center Frequency [kHz] 5.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (5.32 - 6.6)
Median 10dB Bandwidth [kHz] (lower-upper) 2.89 (4.33 - 7.52)
Median duration [μs] (25-75 percentile) 893 (242 - 1414)

Event ID: 7939.241129230946.wav

Time: 2024-11-29 23:09UTC to 2024-11-29 23:15UTC

Event contains 1366 original clicks, 683 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 572 clicks) .

Median statistics for 572 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.95
Median 10dB Center Frequency [kHz] 5.93
Median 3dB Bandwidth [kHz] (lower-upper) 0.974 (5.39 - 6.55)
Median 10dB Bandwidth [kHz] (lower-upper) 2.58 (4.38 - 7.34)
Median duration [μs] (25-75 percentile) 1049 (441 - 1530)

Event ID: 7939.241130005746.wav

Time: 2024-11-30 00:57UTC to 2024-11-30 01:03UTC

Event contains 458 original clicks, 229 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 164 clicks) .

Median statistics for 164 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.6
Median 3dB Center Frequency [kHz] 8.23
Median 10dB Center Frequency [kHz] 9.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.41 (7.18 - 9.14)
Median 10dB Bandwidth [kHz] (lower-upper) 5.73 (5.51 - 12.5)
Median duration [μs] (25-75 percentile) 219 (42 - 1000)

Event ID: 7939.241130044546.wav

Time: 2024-11-30 04:45UTC to 2024-11-30 04:51UTC

Event contains 436 original clicks, 218 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 203 clicks) .

Median statistics for 203 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 9.11
Median 10dB Center Frequency [kHz] 10.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.96 (7.94 - 10.3)
Median 10dB Bandwidth [kHz] (lower-upper) 8.42 (5.69 - 15.2)
Median duration [μs] (25-75 percentile) 328 (108 - 1000)

Event ID: 7939.241130083946.wav

Time: 2024-11-30 08:39UTC to 2024-11-30 08:45UTC

Event contains 590 original clicks, 295 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 229 clicks) .

Median statistics for 229 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.13
Median 10dB Center Frequency [kHz] 6.04
Median 3dB Bandwidth [kHz] (lower-upper) 0.936 (5.58 - 6.62)
Median 10dB Bandwidth [kHz] (lower-upper) 2.48 (4.66 - 7.3)
Median duration [μs] (25-75 percentile) 777 (235 - 1361)

Event ID: 7939.241130095746.wav

Time: 2024-11-30 09:57UTC to 2024-11-30 10:03UTC

Event contains 458 original clicks, 229 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .

Median statistics for 143 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.12
Median 10dB Center Frequency [kHz] 5.11
Median 3dB Bandwidth [kHz] (lower-upper) 1.06 (4.67 - 5.79)
Median 10dB Bandwidth [kHz] (lower-upper) 2.59 ( 4.2 - 6.75)
Median duration [μs] (25-75 percentile) 399 (100 - 1000)

Event ID: 7939.241130100346.wav

Time: 2024-11-30 10:03UTC to 2024-11-30 10:09UTC

Event contains 740 original clicks, 370 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 293 clicks) .

Median statistics for 293 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.5
Median 10dB Center Frequency [kHz] 8.57
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 ( 7.9 - 9.29)
Median 10dB Bandwidth [kHz] (lower-upper) 3.49 (6.59 - 10.9)
Median duration [μs] (25-75 percentile) 253 (44 - 1000)

Event ID: 7939.241130100946.wav

Time: 2024-11-30 10:09UTC to 2024-11-30 10:15UTC

Event contains 2032 original clicks, 1016 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 900 clicks) .

Median statistics for 900 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.57
Median 10dB Center Frequency [kHz] 8.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (7.76 - 9.35)
Median 10dB Bandwidth [kHz] (lower-upper) 4.3 (6.32 - 11.2)
Median duration [μs] (25-75 percentile) 400 (151 - 1000)

Event ID: 7939.241130101546.wav

Time: 2024-11-30 10:15UTC to 2024-11-30 10:21UTC

Event contains 5778 original clicks, 2889 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2719 clicks) .

Median statistics for 2719 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.59
Median 10dB Center Frequency [kHz] 8.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.56 ( 7.7 - 9.45)
Median 10dB Bandwidth [kHz] (lower-upper) 4.25 (6.08 - 11.1)
Median duration [μs] (25-75 percentile) 527 (274 - 1165)

Event ID: 7939.241130102146.wav

Time: 2024-11-30 10:21UTC to 2024-11-30 10:27UTC

Event contains 7916 original clicks, 3958 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3793 clicks) .

Median statistics for 3793 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.62
Median 10dB Center Frequency [kHz] 8.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.37 ( 7.8 - 9.48)
Median 10dB Bandwidth [kHz] (lower-upper) 3.94 (6.24 - 11.2)
Median duration [μs] (25-75 percentile) 673 (365 - 1225)

Event ID: 7939.241130102746.wav

Time: 2024-11-30 10:27UTC to 2024-11-30 10:33UTC

Event contains 6256 original clicks, 3128 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2973 clicks) .

Median statistics for 2973 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.38
Median 10dB Center Frequency [kHz] 8.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (7.56 - 9.14)
Median 10dB Bandwidth [kHz] (lower-upper) 3.63 ( 6.3 - 10.6)
Median duration [μs] (25-75 percentile) 636 (190 - 1105)

Event ID: 7939.241130103346.wav

Time: 2024-11-30 10:33UTC to 2024-11-30 10:39UTC

Event contains 4516 original clicks, 2258 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 2121 clicks) .

Median statistics for 2121 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.02
Median 10dB Center Frequency [kHz] 7.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (6.26 - 7.76)
Median 10dB Bandwidth [kHz] (lower-upper) 3.92 (4.34 - 9.72)
Median duration [μs] (25-75 percentile) 626 (175 - 1217)

Event ID: 7939.241130103946.wav

Time: 2024-11-30 10:39UTC to 2024-11-30 10:45UTC

Event contains 550 original clicks, 275 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 219 clicks) .

Median statistics for 219 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.44
Median 10dB Center Frequency [kHz] 5.82
Median 3dB Bandwidth [kHz] (lower-upper) 1.1 ( 5.7 - 7.34)
Median 10dB Bandwidth [kHz] (lower-upper) 3.11 (4.23 - 7.84)
Median duration [μs] (25-75 percentile) 193 (0 - 1000)

Event ID: 7939.241130104546.wav

Time: 2024-11-30 10:45UTC to 2024-11-30 10:51UTC

Event contains 1678 original clicks, 839 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 727 clicks) .

Median statistics for 727 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.83
Median 10dB Center Frequency [kHz] 6.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.94 - 7.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.78 (4.33 - 9.64)
Median duration [μs] (25-75 percentile) 388 (50 - 1000)

Event ID: 7939.241130105146.wav

Time: 2024-11-30 10:51UTC to 2024-11-30 10:57UTC

Event contains 3292 original clicks, 1646 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1532 clicks) .

Median statistics for 1532 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.15
Median 10dB Center Frequency [kHz] 6.68
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (5.39 - 6.97)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (4.05 - 9.08)
Median duration [μs] (25-75 percentile) 467 (100 - 1064)

Event ID: 7939.241130105746.wav

Time: 2024-11-30 10:57UTC to 2024-11-30 11:03UTC

Event contains 4144 original clicks, 2072 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1931 clicks) .

Median statistics for 1931 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.04
Median 10dB Center Frequency [kHz] 6.76
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.14 - 6.83)
Median 10dB Bandwidth [kHz] (lower-upper) 4.14 (3.49 - 9.37)
Median duration [μs] (25-75 percentile) 774 (235 - 1311)

Event ID: 7939.241130110346.wav

Time: 2024-11-30 11:03UTC to 2024-11-30 11:09UTC

Event contains 9286 original clicks, 4643 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 4324 clicks) .

Median statistics for 4324 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.96
Median 10dB Center Frequency [kHz] 7.96
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (5.89 - 7.93)
Median 10dB Bandwidth [kHz] (lower-upper) 5.27 ( 3.8 - 11.1)
Median duration [μs] (25-75 percentile) 813 (190 - 1543)

Event ID: 7939.241130110946.wav

Time: 2024-11-30 11:09UTC to 2024-11-30 11:15UTC

Event contains 10826 original clicks, 5413 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 5071 clicks) .

Median statistics for 5071 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.28
Median 10dB Center Frequency [kHz] 7.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (6.21 - 8.32)
Median 10dB Bandwidth [kHz] (lower-upper) 4.55 (4.21 - 10.6)
Median duration [μs] (25-75 percentile) 905 (375 - 1452)

Event ID: 7939.241130111546.wav

Time: 2024-11-30 11:15UTC to 2024-11-30 11:21UTC

Event contains 6458 original clicks, 3229 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 3040 clicks) .

Median statistics for 3040 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.26
Median 10dB Center Frequency [kHz] 7.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (6.25 - 8.24)
Median 10dB Bandwidth [kHz] (lower-upper) 4.65 (4.14 - 10.2)
Median duration [μs] (25-75 percentile) 679 (164 - 1296)

Event ID: 7939.241130112146.wav

Time: 2024-11-30 11:21UTC to 2024-11-30 11:27UTC

Event contains 2392 original clicks, 1196 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1069 clicks) .

Median statistics for 1069 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.86
Median 10dB Center Frequency [kHz] 7.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.55 (6.09 - 7.7)
Median 10dB Bandwidth [kHz] (lower-upper) 4.57 (4.29 - 9.59)
Median duration [μs] (25-75 percentile) 657 (198 - 1217)

Event ID: 7939.241130112746.wav

Time: 2024-11-30 11:27UTC to 2024-11-30 11:33UTC

Event contains 2546 original clicks, 1273 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 933 clicks) .

Median statistics for 933 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.34
Median 10dB Center Frequency [kHz] 8.48
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 ( 7.5 - 9.2)
Median 10dB Bandwidth [kHz] (lower-upper) 4.34 (5.75 - 10.9)
Median duration [μs] (25-75 percentile) 177 (3 - 467)

Event ID: 7939.241130113346.wav

Time: 2024-11-30 11:33UTC to 2024-11-30 11:39UTC

Event contains 2928 original clicks, 1464 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1199 clicks) .

Median statistics for 1199 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 8.99
Median 10dB Center Frequency [kHz] 9.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (8.13 - 9.77)
Median 10dB Bandwidth [kHz] (lower-upper) 4 (6.19 - 11.2)
Median duration [μs] (25-75 percentile) 188 (0 - 1000)

Event ID: 7939.241130113946.wav

Time: 2024-11-30 11:39UTC to 2024-11-30 11:45UTC

Event contains 3240 original clicks, 1620 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1409 clicks) .

Median statistics for 1409 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.43
Median 10dB Center Frequency [kHz] 6.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (5.82 - 7.03)
Median 10dB Bandwidth [kHz] (lower-upper) 3.6 (4.52 - 8.63)
Median duration [μs] (25-75 percentile) 712 (109 - 1058)

Event ID: 7939.241130114546.wav

Time: 2024-11-30 11:45UTC to 2024-11-30 11:51UTC

Event contains 3938 original clicks, 1969 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1776 clicks) .

Median statistics for 1776 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.37
Median 10dB Center Frequency [kHz] 6.59
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (5.37 - 7.24)
Median 10dB Bandwidth [kHz] (lower-upper) 4.34 (4.05 - 8.91)
Median duration [μs] (25-75 percentile) 718 (258 - 1249)

Event ID: 7939.241130115146.wav

Time: 2024-11-30 11:51UTC to 2024-11-30 11:57UTC

Event contains 1984 original clicks, 992 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 678 clicks) .

Median statistics for 678 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.08
Median 10dB Center Frequency [kHz] 7.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (6.39 - 7.79)
Median 10dB Bandwidth [kHz] (lower-upper) 3.93 (4.95 - 9.34)
Median duration [μs] (25-75 percentile) 76 (0 - 497)

Event ID: 7939.241202033946.wav

Time: 2024-12-02 03:39UTC to 2024-12-02 03:45UTC

Event contains 542 original clicks, 271 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 153 clicks) .

Median statistics for 153 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.11
Median 10dB Center Frequency [kHz] 8.08
Median 3dB Bandwidth [kHz] (lower-upper) 0.848 (7.52 - 8.61)
Median 10dB Bandwidth [kHz] (lower-upper) 2.75 (6.27 - 9.75)
Median duration [μs] (25-75 percentile) 1653 (1223 - 2229)

Event ID: 7939.241202224546.wav

Time: 2024-12-02 22:45UTC to 2024-12-02 22:51UTC

Event contains 1254 original clicks, 627 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 339 clicks) .

Median statistics for 339 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.67
Median 10dB Center Frequency [kHz] 8.23
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (6.82 - 8.55)
Median 10dB Bandwidth [kHz] (lower-upper) 5.5 (5.07 - 10.8)
Median duration [μs] (25-75 percentile) 560 (100 - 1090)

Event ID: 7939.241202225146.wav

Time: 2024-12-02 22:51UTC to 2024-12-02 22:57UTC

Event contains 2672 original clicks, 1336 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 613 clicks) .

Median statistics for 613 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.57
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (5.86 - 7.24)
Median 10dB Bandwidth [kHz] (lower-upper) 4.29 (4.25 - 9.23)
Median duration [μs] (25-75 percentile) 73 (18 - 391)

Clean up Event Table

# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets, 
                                    paste0('eventTable_', params$mission, '_', 
                                           params$drift, '_', Sys.Date(),'.csv')))

#dbDisconnect(dbFile)

After additional filtering based on median peak frequency, 102 events events of 2419 original events remain.